*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    font-family: 'Poppins', sans-serif;
    background-color: #a5a2a2;
}
.header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #000;
}
.header h1{
    color: #fff;
}
ul a{
    color: #fff;
    text-decoration: none;
    margin-left: 20px;
}
ul li a{
    list-style: none;
}
ul a:hover{
    color: #000;
}
.home{
    background-image: url(WhatsApp\ Image\ 2026-05-28\ at\ 20.14.11\ \(3\).jpeg);
    background-size: cover;
    background-repeat: no-repeat;
    height: 700px;
}
.home p{
    color: #fff;
    font-size: 20px;
    text-align: center;
    padding-top: 200px;
}
.home button{
    display: block;
    margin: 20px auto;
    padding: 10px 20px;
    font-size: 16px;
    background-color: #000;
    color: #fff;
    border: none;
    cursor: pointer;
    border-radius: 10px;
}
.home button:hover{
    background-color: #fff;
    color: #000;
}
.home h2{
    color: #fff;
    text-align: center;
    padding-top: 20px;
}
.share-holders{
    display: flex;
    justify-content: space-around;
    padding: 50px;
    background-color: #fff;
}
.share-holders p{
    width: 300px;
    text-align: center;
    font-size: 18px;
}
.social-media{
    display: flex;
    justify-content: center;
    padding: 20px;
    background-color: #000;
}
.social-media a{
    color: #fff;
    text-decoration: none;
    margin: 0 10px;
    font-size: 20px;
}
.social-media a:hover{
    color: #fff;
    background-color: #000;
    padding: 5px 10px;
    border-radius: 5px;
}
.social-media h1{
    color: #fff;
    text-align: center;
    margin-bottom: 10px;
}
.menu-food{
    display: flex;
    justify-content: space-around;
    padding: 50px;
    background-color: #fff;
}
.menu-food img{
    width: 1000px;
    height: 780px;
    border-radius: 10px;
}
.menu-food h1{
    color: #000;
    text-align: center;
    margin-bottom: 20px;
}
.team{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 50px;
    background-color: #656363;
}
.team h1{
    color: #f0ecec;
    text-align: center;
    margin-bottom: 20px;
}
.team img {
    width: 500px;
    height: 500px;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(16, 200, 56, 0.2);

    /* ADD THIS */
    animation: team 10s linear infinite;
}

@keyframes team {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.container {
    display: flex;
    justify-content: space-around; 
}
.co-worker{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 50px;
    background-color: #656363;
}
.co-worker h1{
    color: #f0ecec;
    text-align: center;
    margin-bottom: 20px;
}
.co-worker img {
    width: 500px;
    height: 500px;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(16, 200, 56, 0.2);

    /* ADD THIS */
    animation: team 10s linear infinite;
}
/* 🔹 Page container */
.container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;

    flex-wrap: wrap;              /* responsive */
    padding: 30px;
    background-color: #f5f5f5;
}

/* 🔹 Each card wrapper */
.menu-list {
    display: flex;
    justify-content: center;
}

/* 🔹 Card */
.menu-lists {
    width: 250px;
    background-color: black;
    color: white;

    padding: 15px;
    border-radius: 15px;
    text-align: center;

    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* 🔥 Hover effect */
.menu-lists:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 25px rgba(0,0,0,0.3);
}

/* 🔹 Image */
.menu-lists img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
}

/* 🔹 Title */
.menu-lists h1 {
    margin: 10px 0;
    font-size: 20px;
}

/* 🔹 Price */
.menu-lists p {
    color: #9ce672;
    font-size: 18px;
    margin-bottom: 10px;
}

/* 🔹 Button */
.menu-lists button {
    padding: 10px 20px;
    font-size: 16px;
    background-color: #fff;
    color: #000;
    border: none;
    cursor: pointer;
    border-radius: 10px;

    transition: background 0.3s ease, transform 0.2s ease;
}

/* 🔥 Button hover */
.menu-lists button:hover {
    background-color: #9ce672;
    transform: scale(1.05);
}
/* 🔹 Main container */
.container1 {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;

    flex-wrap: wrap;              /* responsive */
    min-height: 100vh;            /* full screen height */
    background: linear-gradient(135deg, #9ce672, #f5f5f5);
    padding: 20px;
}

/* 🔹 Login + Register boxes */
.login, .register {
    width: 300px;
    background-color: #000;
    color: white;

    padding: 25px;
    border-radius: 15px;
    text-align: center;

    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

/* 🔥 hover effect */
.login:hover, .register:hover {
    transform: translateY(-8px);
}

/* 🔹 Titles */
.login h1, .register h1 {
    font-size: 20px;
    margin-bottom: 15px;
}

/* 🔹 Inputs */
.login input,
.register input {
    width: 100%;
    padding: 10px;
    margin: 8px 0;

    border: none;
    border-radius: 8px;
    outline: none;
}

/* 🔹 Buttons */
.login button,
.register button {
    width: 100%;
    padding: 10px;
    margin-top: 10px;

    background-color: #fff;
    color: #000;
    border: none;
    border-radius: 8px;
    cursor: pointer;

    font-size: 16px;
    transition: background 0.3s ease, transform 0.2s ease;
}

/* 🔥 button hover */
.login button:hover,
.register button:hover {
    background-color: #9ce672;
    transform: scale(1.05);
}

/* 🔹 Main rating container */
.rate-section {
    width: 350px;
    margin: 50px auto;

    background-color: #000;
    color: white;

    padding: 25px;
    border-radius: 15px;

    display: flex;
    flex-direction: column;
    gap: 12px;

    text-align: center;

    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

/* 🔥 hover effect */
.rate-section:hover {
    transform: translateY(-5px);
}

/* 🔹 Label */
.rate-section label {
    font-size: 16px;
    font-weight: bold;
}

/* 🔹 Dropdown */
.rate-section select {
    padding: 10px;
    border-radius: 8px;
    border: none;
    outline: none;

    font-size: 14px;
    cursor: pointer;
}

/* 🔹 Textarea */
.rate-section textarea {
    width: 100%;
    height: 100px;

    padding: 10px;
    border-radius: 8px;
    border: none;
    outline: none;

    resize: none;
    font-size: 14px;
}

/* 🔹 Button */
.rate-section button {
    padding: 10px;
    border: none;
    border-radius: 8px;

    background-color: #fff;
    color: #000;

    font-size: 16px;
    cursor: pointer;

    transition: background 0.3s ease, transform 0.2s ease;
}

/* 🔥 Button hover */
.rate-section button:hover {
    background-color: #9ce672;
    transform: scale(1.05);
}

/* 🔹 Delivery Section */
.delivery-bike {
    background: #000;
    color: white;

    padding: 30px;
    text-align: center;
    border-radius: 15px;
    margin: 40px auto;
    width: 90%;
    max-width: 600px;
}

/* 🔹 List */
.delivery-bike ul {
    list-style: none;
    padding: 0;
}

.delivery-bike ul li {
    padding: 8px;
    font-size: 18px;
}

/* 🔹 Image */
.delivery-bike img {
    width: 100%;
    max-width: 350px;
    border-radius: 10px;
    margin: 15px 0;
    object-fit: cover;
}

/* 🔹 Contact box */
.contact {
    background: #111;
    padding: 15px;
    margin-top: 20px;
    border-radius: 10px;
}

.contact h2 {
    margin-bottom: 10px;
}

/* 🔹 Map */
.map {
    margin-top: 20px;
    background: #111;
    padding: 15px;
    border-radius: 10px;
}

.map iframe {
    border-radius: 10px;
}

/* 🔥 hover effect */
.delivery-bike:hover {
    transform: scale(1.01);
    transition: 0.3s ease;
}


/* =========================
   📱 SMALL PHONES (0 - 480px)
========================= */
@media (max-width: 480px) {

    .header {
        flex-direction: column;
        text-align: center;
    }

    .home {
        height: auto;
        padding: 40px 10px;
    }

    .home p {
        padding-top: 50px;
        font-size: 16px;
    }

    .share-holders {
        flex-direction: column;
        align-items: center;
    }

    .menu-food img {
        width: 100%;
        height: auto;
    }

    .team img,
    .co-worker img {
        width: 250px;
        height: 250px;
    }

    .container {
        flex-direction: column;
    }

    .container1 {
        flex-direction: column;
    }
}


/* =========================
   📱 TABLETS (481px - 768px)
========================= */
@media (max-width: 768px) {

    .header {
        flex-direction: column;
        text-align: center;
    }

    .menu-food img {
        width: 100%;
        height: auto;
    }

    .container {
        justify-content: center;
        flex-wrap: wrap;
    }

    .container1 {
        flex-direction: column;
    }

    .team img,
    .co-worker img {
        width: 350px;
        height: 350px;
    }
}


/* =========================
   💻 SMALL LAPTOPS (769px - 1024px)
========================= */
@media (max-width: 1024px) {

    .menu-food img {
        width: 100%;
        height: auto;
    }

    .container {
        justify-content: center;
        flex-wrap: wrap;
    }
}


/* =========================
   🖥️ LARGE SCREENS (1200px+)
========================= */
@media (min-width: 1200px) {

    body {
        max-width: 1400px;
        margin: auto;
    }

    .container {
        justify-content: space-around;
    }
}
